home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing.text;
-
- import java.awt.event.ActionEvent;
-
- class DefaultEditorKit$DumpModelAction extends TextAction {
- DefaultEditorKit$DumpModelAction() {
- super("dump-model");
- }
-
- public void actionPerformed(ActionEvent e) {
- JTextComponent target = ((TextAction)this).getTextComponent(e);
- if (target != null) {
- Document d = target.getDocument();
- if (d instanceof AbstractDocument) {
- ((AbstractDocument)d).dump(System.err);
- }
- }
-
- }
- }
-